WARNINGS in child compilations (Use stats.children: true resp. --stats-children for more details)

125

1 WARNING in child compilations (Use 'stats.children: true' resp. '--stats-children' for more details) -

npm install [email protected] --save-exact

WARNINGS in child compilations (Use 'stats.children: true' resp. '--stats-children' for more details) -

Solution 1: Add stats.children: true
In order to solve this warning you just need to add stats.children: true in your webpack.mix.js file. First of all open your webpack.mix.js file and add the following code.

mix.webpackConfig({
    stats: {
        children: true,
    },
});
And Now, Your error must be solved. Thanks.

Comments

Submit
0 Comments